home *** CD-ROM | disk | FTP | other *** search
/ AP Professional Graphics CD-ROM Library / AP Professional Graphics CD-ROM Library.iso / pc / unix / appendix / gemsii / intrsect / makefile < prev   
Encoding:
Makefile  |  1992-09-17  |  199 b   |  13 lines

  1. CFLAGS = -g -I..
  2.  
  3. all:        intsph.o inttor.o
  4.  
  5. intsph.o:    intsph.c
  6.         cc $(CFLAGS) -c intsph.c -o intsph.o
  7.  
  8. inttor.o:    inttor.c
  9.         cc $(CFLAGS) -c inttor.c -o inttor.o
  10.  
  11. clean:
  12.         /bin/rm -f intsph.o inttor.o
  13.